home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / int32.cpp < prev    next >
C/C++ Source or Header  |  1999-03-14  |  16KB  |  737 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: int32.cpp 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 09/05/1997  
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. The INT32 class is used to represent 32 bit signed integers
  32. independently of the operating system or hardware platform
  33. used. It was created to overcome the big and little endian
  34. problem encountered when writing integer values to a common
  35. database file accessed by several different types of machines.
  36.  
  37. The INT32 class is used to represent 32 bit signed integers
  38. independently of the operating system or hardware platform used.
  39. It works by separating a 32-bit value into four separate byte
  40. values and reordering the bytes lowest-order to highest-order.
  41. An INT32 type has a base 10 positive limit of 2,147,483,647 and
  42. a negative limit of 2,147,483,648.
  43. */
  44. // ----------------------------------------------------------- // 
  45. #include <string.h>
  46. #include <memory.h>
  47. #include "int32.h"
  48. #include "ehandler.h"
  49.  
  50. INT32::INT32(__LWORD__ val)
  51. {
  52.   UnPackBits(val);
  53. }
  54.  
  55. INT32::INT32(const INT32& ob)
  56. {
  57.   memmove((void *)byte, (const void *)ob.byte, 4);
  58. }
  59.  
  60. INT32& INT32::operator=(const INT32& ob)
  61. {
  62.   memmove((void *)byte, (const void *)ob.byte, 4);
  63.   return *this;
  64. }
  65.  
  66. INT32& INT32::operator=(const __LWORD__ val)
  67. {
  68.   UnPackBits(val);
  69.   return *this;
  70. }
  71.  
  72. INT32::operator __LWORD__() const
  73. {
  74.   return PackBits();
  75. }
  76.  
  77. __LWORD__ INT32::PackBits() const
  78. {
  79.   __LWORD__ a, b, c, d;
  80.   
  81.   a = (__LWORD__)byte[0];
  82.   b = (__LWORD__)byte[1];
  83.   c = (__LWORD__)byte[2];
  84.   d = (__LWORD__)byte[3];
  85.  
  86.   a = a & 0xFF;
  87.   b = (b<<8) & 0xFF00;
  88.   c = (c<<16) & 0xFF0000;
  89.   d = (d<<24) & 0xFF000000;
  90.  
  91.   return a + b + c + d;
  92. }
  93.  
  94. void INT32::UnPackBits(__LWORD__ val)
  95. {
  96.   byte[0] = val & 0xFF;
  97.   byte[1] = (val & 0xFF00)>>8;
  98.   byte[2] = (val & 0xFF0000)>>16;
  99.   byte[3] = (val & 0xFF000000)>>24;
  100. }
  101.  
  102. INT32 INT32::operator++(int) // Postfix
  103. {
  104.   INT32 val_before(*this); 
  105.   operator=(*this + 1);
  106.   return val_before;
  107. }
  108.  
  109. INT32 INT32::operator--(int) // Postfix
  110. {
  111.   INT32 val_before(*this); 
  112.   operator=(*this - 1);
  113.   return val_before;
  114. }
  115.  
  116. void INT32::operator/=(const INT32 &i)
  117. {
  118.   if(i == 0)
  119. #ifdef CPP_EXCEPTIONS
  120.     throw CDivideByZero();
  121. #else
  122.     Error->SignalException(EHandler::DivideByZero);
  123. #endif
  124.  
  125.   operator=(*this / i);
  126. }
  127.  
  128. void INT32::operator/=(const __LWORD__ &i)
  129. {
  130.   if(i == 0)
  131. #ifdef CPP_EXCEPTIONS
  132.     throw CDivideByZero();
  133. #else
  134.     Error->SignalException(EHandler::DivideByZero);
  135. #endif
  136.  
  137.     operator=(*this / i);
  138. }
  139.  
  140. void INT32::operator/=(const __ULWORD__ &i)
  141. {
  142.   if(i == 0)
  143. #ifdef CPP_EXCEPTIONS
  144.     throw CDivideByZero();
  145. #else
  146.     Error->SignalException(EHandler::DivideByZero);
  147. #endif
  148.  
  149.   operator=(*this / i);
  150. }
  151.  
  152. void INT32::operator/=(const __WORD__ &i)
  153. {
  154.   if(i == 0)
  155. #ifdef CPP_EXCEPTIONS
  156.     throw CDivideByZero();
  157. #else
  158.     Error->SignalException(EHandler::DivideByZero);
  159. #endif
  160.  
  161.   operator=(*this / i);
  162. }
  163.  
  164. void INT32::operator/=(const __SWORD__ &i)
  165. {
  166.   if(i == 0)
  167. #ifdef CPP_EXCEPTIONS
  168.     throw CDivideByZero();
  169. #else
  170.     Error->SignalException(EHandler::DivideByZero);
  171. #endif
  172.  
  173.   operator=(*this / i);
  174. }
  175.  
  176. void INT32::operator/=(const __UWORD__ &i)
  177. {
  178.   if(i == 0)
  179. #ifdef CPP_EXCEPTIONS
  180.     throw CDivideByZero();
  181. #else
  182.     Error->SignalException(EHandler::DivideByZero);
  183. #endif
  184.  
  185.   operator=(*this / i);
  186. }
  187.  
  188. void INT32::operator/=(const __USWORD__ &i)
  189. {
  190.   if(i == 0)
  191. #ifdef CPP_EXCEPTIONS
  192.     throw CDivideByZero();
  193. #else
  194.     Error->SignalException(EHandler::DivideByZero);
  195. #endif
  196.  
  197.   operator=(*this / i);
  198. }
  199.  
  200. void INT32::operator/=(const __SBYTE__ &i)
  201. {
  202.   if(i == 0)
  203. #ifdef CPP_EXCEPTIONS
  204.     throw CDivideByZero();
  205. #else
  206.     Error->SignalException(EHandler::DivideByZero);
  207. #endif
  208.  
  209.   operator=(*this / (__LWORD__)i);
  210. }
  211.  
  212. void INT32::operator/=(const __UBYTE__ &i)
  213. {
  214.   if(i == 0)
  215. #ifdef CPP_EXCEPTIONS
  216.     throw CDivideByZero();
  217. #else
  218.     Error->SignalException(EHandler::DivideByZero);
  219. #endif
  220.  
  221.   operator=(*this / (__LWORD__)i);
  222. }
  223.  
  224. int operator==(const INT32 &a, const INT32 &b)
  225. {
  226.   return a.PackBits() == b.PackBits();
  227. }
  228.  
  229. int operator==(const INT32 &a, const __LWORD__ &bl)
  230. {
  231.   return a.PackBits() == bl;
  232. }
  233.  
  234. int operator==(const __LWORD__ &al, const INT32 &b)
  235. {
  236.   return al == b.PackBits(); 
  237. }
  238.  
  239. int operator==(const INT32 &a, const __ULWORD__ &bl)
  240. {
  241.   return a.PackBits() == bl;
  242. }
  243.  
  244. int operator==(const __ULWORD__ &al, const INT32 &b)
  245. {
  246.   return al == b.PackBits(); 
  247. }
  248.  
  249. int operator==(const INT32 &a, const __WORD__ &bl)
  250. {
  251.   return a.PackBits() == bl;
  252. }
  253.  
  254. int operator==(const __WORD__ &al, const INT32 &b)
  255. {
  256.   return al == b.PackBits();
  257. }
  258.  
  259. int operator==(const INT32 &a, const __SWORD__ &bl)
  260. {
  261.   return a.PackBits() == bl;
  262. }
  263.  
  264. int operator==(const __SWORD__ &al, const INT32 &b)
  265. {
  266.   return al == b.PackBits(); 
  267. }
  268.  
  269. int operator==(const INT32 &a, const __UWORD__ &bl)
  270. {
  271.   return a.PackBits() == bl;
  272. }
  273.  
  274. int operator==(const __UWORD__ &al, const INT32 &b)
  275. {
  276.   return al == b.PackBits(); 
  277. }
  278.  
  279. int operator==(const INT32 &a, const __USWORD__ &bl)
  280. {
  281.   return  a.PackBits() == bl;
  282. }
  283.  
  284. int operator==(const __USWORD__ &al, const INT32 &b)
  285. {
  286.   return al == b.PackBits(); 
  287. }
  288.  
  289. int operator==(const INT32 &a, const __SBYTE__ &bl)
  290. {
  291.   return a.PackBits() == (__LWORD__)bl;
  292. }
  293.  
  294. int operator==(const __SBYTE__ &al, const INT32 &b)
  295. {
  296.   return (__LWORD__)al == b.PackBits(); 
  297. }
  298.  
  299. int operator==(const INT32 &a, const __UBYTE__ &bl)
  300. {
  301.   return a.PackBits() == (__LWORD__)bl;
  302. }
  303.  
  304. int operator==(const __UBYTE__ &al, const INT32 &b)
  305. {
  306.   return (__LWORD__)al == b.PackBits(); 
  307. }
  308.  
  309. int operator!=(const INT32 &a, const INT32 &b)
  310. {
  311.   return a.PackBits() != b.PackBits();
  312. }
  313.  
  314. int operator!=(const INT32 &a, const __LWORD__ &bl)
  315. {
  316.   return a.PackBits() != bl;
  317. }
  318.  
  319. int operator!=(const __LWORD__ &al, const INT32 &b)
  320. {
  321.   return al != b.PackBits();
  322. }
  323.  
  324. int operator!=(const INT32 &a, const __ULWORD__ &bl)
  325. {
  326.   return a.PackBits() != bl;
  327. }
  328.  
  329. int operator!=(const __ULWORD__ &al, const INT32 &b)
  330. {
  331.   return al != b.PackBits();
  332. }
  333.  
  334. int operator!=(const INT32 &a, const __WORD__ &bl)
  335. {
  336.   return a.PackBits() != bl;
  337. }
  338.  
  339. int operator!=(const __WORD__ &al, const INT32 &b)
  340. {
  341.   return al != b.PackBits();
  342. }
  343.  
  344. int operator!=(const INT32 &a, const __SWORD__ &bl)
  345. {
  346.   return a.PackBits() != bl;
  347. }
  348.  
  349. int operator!=(const __SWORD__ &al, const INT32 &b)
  350. {
  351.   return al != b.PackBits();
  352. }
  353.  
  354. int operator!=(const INT32 &a, const __UWORD__ &bl)
  355. {
  356.   return a.PackBits() != bl;
  357. }
  358.  
  359. int operator!=(const __UWORD__ &al, const INT32 &b)
  360. {
  361.   return al != b.PackBits();
  362. }
  363.  
  364. int operator!=(const INT32 &a, const __USWORD__ &bl)
  365. {
  366.   return a.PackBits() != bl;
  367. }
  368.  
  369. int operator!=(const __USWORD__ &al, const INT32 &b)
  370. {
  371.   return al != b.PackBi